home *** CD-ROM | disk | FTP | other *** search
/ Zoom 1 / Zoom (1995)(Active Software, Ground Zero).iso / utils / u528.dms / u528.adf / Dialling Codes / Install < prev    next >
Text File  |  1994-09-11  |  856b  |  45 lines

  1. ; Script to install Dialling Codes
  2.  
  3. ; ask where to install Dialling Codes
  4. (set @default-dest
  5. (askdir
  6.    (prompt "Please select the Directory where you would like to install"
  7.            " Dialling Codes ")
  8.    (help @askdir-help)
  9.    (default "SYS:")
  10.    )
  11. )
  12.  
  13. (
  14. (working "Installing Dialling Codes Program")
  15. (copyfiles
  16.     (prompt "")
  17.     (help @copyfiles-help)
  18.     (source "Dialling Codes")
  19.     (dest @default-dest)
  20.     (infos)
  21. )
  22.  
  23.  
  24. (copyfiles
  25.     (prompt "Would you like to install the Amigaguide documentation"
  26.                 " for Dialling Codes")
  27.     (help @copyfiles-help)
  28.     (source "Dialling Codes.guide")
  29.     (dest @default-dest)
  30.     (confirm)
  31.     (infos)
  32. )
  33. (copyfiles
  34.     (prompt "Would you like to install the plain text documentation"
  35.                 " for Dialling Codes")
  36.     (help @copyfiles-help)
  37.     (source "Dialling Codes.doc")
  38.     (dest @default-dest)
  39.     (confirm)
  40.     (infos)
  41. )
  42. )
  43.  
  44. (exit)
  45.